home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / smail-3.1.28 / src / parse.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-11  |  607 b   |  26 lines

  1. /* @(#)src/parse.h    1.3 7/11/92 11:49:53 */
  2.  
  3. /*
  4.  *    Copyright (C) 1987, 1988 by Ronald S. Karr and Landon Curt Noll
  5.  *    Copyright (C) 1992  Ronald S. Karr
  6.  *
  7.  * See the file COPYING, distributed with smail, for restriction
  8.  * and warranty information.
  9.  */
  10.  
  11. /*
  12.  * parse.h:
  13.  *    interface file for routines in parse.c.
  14.  */
  15.  
  16. /* types used in parse.c */
  17. /*
  18.  * attributes returned by parse_entry are a linked list of the
  19.  * following structure
  20.  */
  21. struct attribute {
  22.     struct attribute *succ;        /* next attribute */
  23.     char *name;                /* name of attribute */
  24.     char *value;            /* value of the attribute */
  25. };
  26.